home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Programming Languages Suite
/
ProgLangD.iso
/
Borland Visual dBASE Professiona v7.0
/
DATA1.CAB
/
Sample_dBASE
/
Fleet
/
Fleet.dmd
< prev
next >
Wrap
Text File
|
1997-11-20
|
1KB
|
56 lines
** END HEADER -- do not remove this line
//
// Generated on 10/09/97
//
class FleetDataModule of FLEETCDATAMODULE from "fleet.cdm"
this.FLIGHT1 = new QUERY()
this.FLIGHT1.parent = this
with (this.FLIGHT1)
left = 4
top = 2
database = form.dbfleet
sql = 'SELECT * FROM "FLIGHT.DBF"'
active = true
endwith
with (this.FLIGHT1.rowset)
indexName = "Flight ID"
endwith
this.SCHEDULE1 = new QUERY()
this.SCHEDULE1.parent = this
with (this.SCHEDULE1)
left = 8
top = 2
database = form.dbfleet
sql = 'SELECT * FROM "SCHEDULE.DBF"'
active = true
endwith
with (this.SCHEDULE1.rowset)
indexName = "Flight ID"
endwith
this.AIRCRAFT1 = new QUERY()
this.AIRCRAFT1.parent = this
with (this.AIRCRAFT1)
left = 12
top = 2
database = form.dbfleet
sql = 'SELECT * FROM "AIRCRAFT.DBF"'
active = true
endwith
with (this.AIRCRAFT1.rowset)
indexName = "Aircraft ID"
endwith
endclass